Skip to content

Conversation

DuckySoLucky
Copy link
Contributor

@DuckySoLucky DuckySoLucky commented Aug 12, 2022

Description

Changes:
・Added Description to Fetchur Items
・Added farming tag - Information about Jacob's contests
・Updated Documentation and ReadME.md
・Removed commented code from pets.js

Type of change

  • New feature

Preview

fetchur_items.js
{
"status": 200,
"data": {
 "name": "Red Wool",
 "quantity": 50,
 "text": "50x Red Wool",
 "image": "https://sky.shiiyu.moe/item/WOOL:14",
 "description": "This item can be purchased from the Wool Merchant at the Builder's House in the Hub"
}
}
farming.js
 "farming": {
   "farming": 60,
   "output": {
     "jacob": {
       "talked": true,
       "medals": {
         "bronze": 0,
         "silver": 0,
         "gold": 0
       },
       "total_badges": {
         "bronze": 0,
         "silver": 4,
         "gold": 88
       },
       "perks": {
         "double_drops": 15,
         "farming_level_cap": 10
       },
       "unique_golds": 10,
       "crops": {
         "CARROT_ITEM": {
           "name": "Carrot",
           "participated": true,
           "unique_gold": true,
           "contests": 35,
           "personal_best": 595267,
           "badges": {
             "gold": 6,
             "silver": 0,
             "bronze": 0
           }
         },
         "CACTUS": {
           "name": "Cactus",
           "participated": true,
           "unique_gold": true,
           "contests": 1,
           "personal_best": 25072,
           "badges": {
             "gold": 1,
             "silver": 0,
             "bronze": 0
           }
         },
         "INK_SACK:3": {
           "name": "Cocoa Beans",
           "participated": true,
           "unique_gold": true,
           "contests": 4,
           "personal_best": 330095,
           "badges": {
             "gold": 4,
             "silver": 0,
             "bronze": 0
           }
         },
         "MELON": {
           "name": "Melon",
           "participated": true,
           "unique_gold": true,
           "contests": 10,
           "personal_best": 627004,
           "badges": {
             "gold": 10,
             "silver": 0,
             "bronze": 0
           }
         },
         "MUSHROOM_COLLECTION": {
           "name": "Mushroom",
           "participated": true,
           "unique_gold": true,
           "contests": 21,
           "personal_best": 70129,
           "badges": {
             "gold": 1,
             "silver": 0,
             "bronze": 0
           }
         },
         "NETHER_STALK": {
           "name": "Nether Wart",
           "participated": true,
           "unique_gold": true,
           "contests": 24,
           "personal_best": 447441,
           "badges": {
             "gold": 3,
             "silver": 0,
             "bronze": 0
           }
         },
         "POTATO_ITEM": {
           "name": "Potato",
           "participated": true,
           "unique_gold": true,
           "contests": 28,
           "personal_best": 560544,
           "badges": {
             "gold": 9,
             "silver": 1,
             "bronze": 0
           }
         },
         "PUMPKIN": {
           "name": "Pumpkin",
           "participated": true,
           "unique_gold": true,
           "contests": 33,
           "personal_best": 136352,
           "badges": {
             "gold": 27,
             "silver": 3,
             "bronze": 0
           }
         },
         "SUGAR_CANE": {
           "name": "Sugar Cane",
           "participated": true,
           "unique_gold": true,
           "contests": 26,
           "personal_best": 556481,
           "badges": {
             "gold": 26,
             "silver": 0,
             "bronze": 0
           }
         },
         "WHEAT": {
           "name": "Wheat",
           "participated": true,
           "unique_gold": true,
           "contests": 1,
           "personal_best": 119948,
           "badges": {
             "gold": 1,
             "silver": 0,
             "bronze": 0
           }
         }
       },
       "contests": {
         "attended_contests": 183,
         "all_contests": [
           {
             "date": "7_20_99",
             "crop": "CARROT_ITEM",
             "collected": 12,
             "claimed": false,
             "medal": null,
             "placing": {
               
             }
           },
           {
             "date": "9_12_99",
             "crop": "PUMPKIN",
             "collected": 3,
             "claimed": false,
             "medal": null,
             "placing": {
               
             }
           },
           {
             "date": "10_8_99",
             "crop": "POTATO_ITEM",
             "collected": 241301,
             "claimed": true,
             "medal": "silver",
             "placing": {
               "position": 181,
               "percentage": 16.469517743403095
             }
           },
           {
             "date": "11_22_99",
             "crop": "POTATO_ITEM",
             "collected": 559661,
             "claimed": true,
             "medal": "gold",
             "placing": {
               "position": 78,
               "percentage": 1.9345238095238095
             }
           },
           {
             "date": "11_25_99",
             "crop": "SUGAR_CANE",
             "collected": 371710,
             "claimed": true,
             "medal": "gold",
             "placing": {
               "position": 213,
               "percentage": 3.193403298350825
             }
           },
           {
             "date": "11_31_99",
             "crop": "PUMPKIN",
             "collected": 94571,
             "claimed": true,
             "medal": "gold",
             "placing": {
               "position": 87,
               "percentage": 1.9070583077597545
             }
           },
           {
             "date": "12_6_99",
             "crop": "CARROT_ITEM",
             "collected": 20,
             "claimed": false,
             "medal": null,
             "placing": {
               
             }
           },
           {
             "date": "1_20_100",
             "crop": "SUGAR_CANE",
             "collected": 380949,
             "claimed": true,
             "medal": "gold",
             "placing": {
               "position": 161,
               "percentage": 2.657642786398151
             }
           },
         ]
       }
     }
   }
 },

Checklist

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • I have checked my code and corrected any misspellings

@DuckySoLucky DuckySoLucky changed the title Jacob support, Updated Docs & ReadME, Code Cleaning Jacob's Contests support, Updated Docs & ReadME, Code Cleaning Aug 13, 2022
@DuckySoLucky
Copy link
Contributor Author

Description

Changes:
・Added enchanting tag - player's enchanting stats including experimentations
・Updated Documentation and ReadME.md
・Added belts to farming tag
・Updated skill in farming tag, accidentally put it to mining
・Added auto pet rules to pets tag
・Updated url in pets.js to be full url

Type of change

  • New feature

Preview

enchantings.js
 "enchanting": {
   "enchanting": 60,
   "experimentation": {
     "simon": {
       "last_attempt": 1653391952901,
       "attempts_0": 16,
       "bonus_clicks": 3,
       "last_claimed": 1653392085547,
       "claims_0": 13,
       "best_score_0": 20,
       "attempts_1": 11,
       "claims_1": 11,
       "best_score_1": 14,
       "attempts_2": 9,
       "claims_2": 9,
       "best_score_2": 15,
       "attempts_3": 19,
       "claims_3": 18,
       "best_score_3": 11,
       "attempts_5": 85,
       "claims_5": 84,
       "best_score_5": 13
     },
     "pairings": {
       "last_claimed": 1653392253096,
       "claims_0": 4,
       "last_attempt": 0,
       "claims_1": 7,
       "best_score_1": 2,
       "claims_2": 9,
       "best_score_2": 3,
       "claims_3": 24,
       "best_score_3": 4,
       "claims_4": 31,
       "best_score_4": 5,
       "claims_5": 58,
       "best_score_5": 4,
       "best_score_0": 4
     },
     "numbers": {
       "last_attempt": 1653392151299,
       "attempts_1": 13,
       "bonus_clicks": 3,
       "last_claimed": 1653392214053,
       "claims_1": 13,
       "best_score_1": 20,
       "attempts_2": 27,
       "claims_2": 26,
       "best_score_2": 10,
       "attempts_3": 88,
       "claims_3": 88,
       "best_score_3": 13
     },
     "claims_resets": 1,
     "claims_resets_timestamp": 1653391939654
   }
 }
farming.js
   "trapper_quest": {
     "last_task_time": 1620495215573,
     "pelt_count": 1
   },
pets.js
   "auto_pet": {
     "rules_limit": 4,
     "rules": [
       {
         "id": "ENTER_ISLAND",
         "pet": "BAL",
         "exceptions": [],
         "disabled": false,
         "data": {
           "island": "mining_3"
         }
       },
       {
         "id": "START_SLAYER_QUEST",
         "pet": "ENDERMAN",
         "exceptions": [],
         "disabled": false,
         "data": {}
       },
       {
         "id": "BOSS_SPAWN",
         "pet": "ENDER_DRAGON",
         "exceptions": [],
         "disabled": false,
         "data": {
           "boss": "enderman",
           "category": "slayer"
         }
       },
       {
         "id": "BOSS_SPAWN",
         "pet": "BLACK_CAT",
         "exceptions": [],
         "disabled": false,
         "data": {
           "boss": "wolf",
           "category": "slayer"
         }
       }
     ]
   },

Checklist

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • I have checked my code and corrected any misspellings

@DuckySoLucky DuckySoLucky changed the title Jacob's Contests support, Updated Docs & ReadME, Code Cleaning Enchanting Experiments and Jacob's Contests support, Updated Docs & ReadME, Code Cleaning Aug 16, 2022
@DuckySoLucky
Copy link
Contributor Author

Description

Changes:
・Added bingo Endpoint - Get a player's bingo profile and progress
・Updated Documentation and ReadME.md
・Updated pets.js

Type of change

  • New feature

Preview

bingo.js (Completed)
{
"status": 200,
"data": {
 "uuid": "fb3d96498a5b4d5b91b763db14b195ad",
 "profile": {
   "points": 105,
   "id": 8,
   "player": [
     {
       "completed": true,
       "id": "FIND_EXPERIMENT_PAIRS_1",
       "name": "Pair Up!",
       "lore": "§7Find §91 Pair §7in the §9Experimentation Table§7.",
       "requiredAmount": 1
     },
     {
       "completed": true,
       "id": "stat_health",
       "name": "Healthy",
       "lore": "§7Reach §c1,000 §c❤ Health§7.",
       "requiredAmount": 1000
     },
     {
       "completed": true,
       "id": "UNLOCK_DUNGEON_CHEST_WOOD",
       "name": "Wooden Treasure",
       "lore": "§7Unlock a §fWood§7 Dungeon Chest."
     },
     {
       "completed": true,
       "id": "collection_bone",
       "name": "Bone Collector",
       "lore": "§7Reach §a100,000 §7Bone Collection.",
       "requiredAmount": 100000
     },
     {
       "completed": true,
       "id": "spawn_golden_goblin",
       "name": "Strange Eggs",
       "lore": "§7Spawn a §6Golden Goblin §7from a Goblin Egg."
     },
     {
       "completed": true,
       "id": "OBTAIN_JACOB_SILVER",
       "name": "Podium Position",
       "lore": "§7Obtain a §fSilver§7 or higher §fMedal§7 in Jacob's Farming Contest."
     },
     {
       "completed": true,
       "id": "UNLOCK_UNIQUE_COLLECTIONS_40",
       "name": "Diversity",
       "lore": "§7Unlock §e40 §7unique Collections.",
       "requiredAmount": 40
     },
     {
       "completed": true,
       "id": "collection_log:3",
       "name": "Jungle Wood Collector",
       "lore": "§7Reach §a20,000 §7Jungle Wood Collection.",
       "requiredAmount": 20000
     },
     {
       "completed": true,
       "id": "wear_accessories",
       "name": "Bedazzled",
       "lore": "§7Equip §a22 §7unique Accessories.",
       "requiredAmount": 22
     },
     {
       "completed": true,
       "id": "bestiary_level_5",
       "name": "Collecting Data",
       "lore": "§7Reach §3Bestiary §7Milestone 5§7.",
       "requiredAmount": 5
     },
     {
       "completed": true,
       "id": "collection_diamond",
       "name": "Diamond Collector",
       "lore": "§7Reach §a25,000 §7Diamond Collection.",
       "requiredAmount": 25000
     },
     {
       "completed": true,
       "id": "stat_strength",
       "name": "Strongman",
       "lore": "§7Reach §c120 §c❁ Strength§7.",
       "requiredAmount": 120
     },
     {
       "completed": true,
       "id": "GET_SKILL_combat_10",
       "name": "Warrior",
       "lore": "§7Obtain level §e10§7 in the §6Combat §7Skill."
     },
     {
       "completed": true,
       "id": "obtain_pets",
       "name": "Pet Hoarder",
       "lore": "§7Obtain §a9 §7unique Pets.",
       "requiredAmount": 9
     },
     {
       "completed": true,
       "id": "obtain_item_wedding_ring_2",
       "name": "Love Is All Around",
       "lore": "§7Obtain a §aMediocre Ring of Love§7."
     },
     {
       "completed": true,
       "id": "stat_critical_damage",
       "name": "Critical",
       "lore": "§7Reach §9100% §9☠ Crit Damage§7.",
       "requiredAmount": 100
     },
     {
       "completed": true,
       "id": "fairy_souls",
       "name": "Fairy Finder",
       "lore": "§7Obtain §d25 Fairy Souls§7.",
       "requiredAmount": 25
     },
     {
       "completed": true,
       "id": "bank_coins",
       "name": "Meiser",
       "lore": "§7Store §6500,000 Coins §7in your Bank.",
       "requiredAmount": 500000
     },
     {
       "completed": true,
       "id": "spider_relic",
       "name": "Relic Researcher",
       "lore": "§7Find 10 §fRelics §7in the Spider's Den.",
       "requiredAmount": 10
     },
     {
       "completed": true,
       "id": "obtain_pet_level",
       "name": "Pet Grinder",
       "lore": "§7Obtain a §a[Lvl 100] Pet§7.",
       "requiredAmount": 0
     }
   ],
   "community": [
     {
       "completed": true,
       "id": "summon_sea_creatures",
       "name": "Poseidon",
       "tiers": [20000, 40000, 60000, 80000, 100000],
       "progress": 137961
     },
     {
       "completed": true,
       "id": "coin_scavenger",
       "name": "Scavenger",
       "tiers": [50000000, 100000000, 150000000, 200000000, 250000000],
       "progress": 327897380
     },
     {
       "completed": true,
       "id": "kill_dungeon_boss_catacombs_1",
       "name": "Clown Collab",
       "tiers": [1000, 2000, 3000, 4000, 5000],
       "progress": 22927
     },
     {
       "completed": true,
       "id": "collect_pelts",
       "name": "Hunter",
       "tiers": [20000, 40000, 60000, 80000, 100000],
       "progress": 204684
     },
     {
       "completed": false,
       "id": "kill_team_treasurite",
       "name": "Let the StarFall",
       "tiers": [100000, 200000, 300000, 400000, 500000],
       "progress": 253432
     }
   ]
 }
}
}
bingo.js (Semi Completed)
{
"status": 200,
"data": {
 "uuid": "c3b9402747b1433d8b20cd54c7da3f5d",
 "profile": {
   "points": 124,
   "id": 8,
   "player": [
     {
       "completed": false,
       "id": "FIND_EXPERIMENT_PAIRS_1",
       "name": "Pair Up!",
       "lore": "§7Find §91 Pair §7in the §9Experimentation Table§7.",
       "requiredAmount": 1
     },
     {
       "completed": false,
       "id": "stat_health",
       "name": "Healthy",
       "lore": "§7Reach §c1,000 §c❤ Health§7.",
       "requiredAmount": 1000
     },
     {
       "completed": false,
       "id": "UNLOCK_DUNGEON_CHEST_WOOD",
       "name": "Wooden Treasure",
       "lore": "§7Unlock a §fWood§7 Dungeon Chest."
     },
     {
       "completed": false,
       "id": "collection_bone",
       "name": "Bone Collector",
       "lore": "§7Reach §a100,000 §7Bone Collection.",
       "requiredAmount": 100000
     },
     {
       "completed": false,
       "id": "spawn_golden_goblin",
       "name": "Strange Eggs",
       "lore": "§7Spawn a §6Golden Goblin §7from a Goblin Egg."
     },
     {
       "completed": false,
       "id": "OBTAIN_JACOB_SILVER",
       "name": "Podium Position",
       "lore": "§7Obtain a §fSilver§7 or higher §fMedal§7 in Jacob's Farming Contest."
     },
     {
       "completed": true,
       "id": "UNLOCK_UNIQUE_COLLECTIONS_40",
       "name": "Diversity",
       "lore": "§7Unlock §e40 §7unique Collections.",
       "requiredAmount": 40
     },
     {
       "completed": false,
       "id": "collection_log:3",
       "name": "Jungle Wood Collector",
       "lore": "§7Reach §a20,000 §7Jungle Wood Collection.",
       "requiredAmount": 20000
     },
     {
       "completed": false,
       "id": "wear_accessories",
       "name": "Bedazzled",
       "lore": "§7Equip §a22 §7unique Accessories.",
       "requiredAmount": 22
     },
     {
       "completed": false,
       "id": "bestiary_level_5",
       "name": "Collecting Data",
       "lore": "§7Reach §3Bestiary §7Milestone 5§7.",
       "requiredAmount": 5
     },
     {
       "completed": false,
       "id": "collection_diamond",
       "name": "Diamond Collector",
       "lore": "§7Reach §a25,000 §7Diamond Collection.",
       "requiredAmount": 25000
     },
     {
       "completed": false,
       "id": "stat_strength",
       "name": "Strongman",
       "lore": "§7Reach §c120 §c❁ Strength§7.",
       "requiredAmount": 120
     },
     {
       "completed": false,
       "id": "GET_SKILL_combat_10",
       "name": "Warrior",
       "lore": "§7Obtain level §e10§7 in the §6Combat §7Skill."
     },
     {
       "completed": false,
       "id": "obtain_pets",
       "name": "Pet Hoarder",
       "lore": "§7Obtain §a9 §7unique Pets.",
       "requiredAmount": 9
     },
     {
       "completed": true,
       "id": "obtain_item_wedding_ring_2",
       "name": "Love Is All Around",
       "lore": "§7Obtain a §aMediocre Ring of Love§7."
     },
     {
       "completed": false,
       "id": "stat_critical_damage",
       "name": "Critical",
       "lore": "§7Reach §9100% §9☠ Crit Damage§7.",
       "requiredAmount": 100
     },
     {
       "completed": false,
       "id": "fairy_souls",
       "name": "Fairy Finder",
       "lore": "§7Obtain §d25 Fairy Souls§7.",
       "requiredAmount": 25
     },
     {
       "completed": false,
       "id": "bank_coins",
       "name": "Meiser",
       "lore": "§7Store §6500,000 Coins §7in your Bank.",
       "requiredAmount": 500000
     },
     {
       "completed": false,
       "id": "spider_relic",
       "name": "Relic Researcher",
       "lore": "§7Find 10 §fRelics §7in the Spider's Den.",
       "requiredAmount": 10
     },
     {
       "completed": false,
       "id": "obtain_pet_level",
       "name": "Pet Grinder",
       "lore": "§7Obtain a §a[Lvl 100] Pet§7.",
       "requiredAmount": 0
     }
   ],
   "community": [
     {
       "completed": true,
       "id": "summon_sea_creatures",
       "name": "Poseidon",
       "tiers": [
         20000,
         40000,
         60000,
         80000,
         100000
       ],
       "progress": 137961
     },
     {
       "completed": true,
       "id": "coin_scavenger",
       "name": "Scavenger",
       "tiers": [
         50000000,
         100000000,
         150000000,
         200000000,
         250000000
       ],
       "progress": 327897380
     },
     {
       "completed": true,
       "id": "kill_dungeon_boss_catacombs_1",
       "name": "Clown Collab",
       "tiers": [
         1000,
         2000,
         3000,
         4000,
         5000
       ],
       "progress": 22927
     },
     {
       "completed": true,
       "id": "collect_pelts",
       "name": "Hunter",
       "tiers": [
         20000,
         40000,
         60000,
         80000,
         100000
       ],
       "progress": 204684
     },
     {
       "completed": false,
       "id": "kill_team_treasurite",
       "name": "Let the StarFall",
       "tiers": [
         100000,
         200000,
         300000,
         400000,
         500000
       ],
       "progress": 253432
     }
   ]
 }
}
}

Checklist

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • I have checked my code and corrected any misspellings

@DuckySoLucky
Copy link
Contributor Author

DuckySoLucky commented Aug 17, 2022

Description

Changes:
・Added calendar Endpoint - Get Skyblock's calendar including all events

Type of change

  • New feature

Preview

calendar.js
{
 "status": 200,
 "data": {
   "from": 1660744480537,
   "to": 1661162100000,
   "date": "Early Spring 24th, 226",
   "year": 226,
   "month": "Early Spring",
   "day": 24,
   "time": "11:30pm",
   "hour": 11,
   "minute": 30,
   "next_day_countdown": 19463,
   "next_month_countdown": 8419463,
   "next_year_countdown": 417619463,
   "events": {
     "BANK_INTEREST": {
       "name": "Bank Interest",
       "duration": 1200000,
       "events": [
         {
           "start_timestamp": 1660827300000,
           "end_timestamp": 1660828500000,
           "starting_in": 82819463,
           "ending_in": 84019463
         },
         {
           "start_timestamp": 1660938900000,
           "end_timestamp": 1660940100000,
           "starting_in": 194419463,
           "ending_in": 195619463
         },
         {
           "start_timestamp": 1661050500000,
           "end_timestamp": 1661051700000,
           "starting_in": 306019463,
           "ending_in": 307219463
         }
       ]
     },
     "DARK_AUCTION": {
       "name": "Dark Auction",
       "duration": 1200000,
       "events": [
         {
           "start_timestamp": 1660744500000,
           "end_timestamp": 1660745700000,
           "starting_in": 19463,
           "ending_in": 1219463
         },
         {
           "start_timestamp": 1660748100000,
           "end_timestamp": 1660749300000,
           "starting_in": 3619463,
           "ending_in": 4819463
         },
         {
           "start_timestamp": 1660751700000,
           "end_timestamp": 1660752900000,
           "starting_in": 7219463,
           "ending_in": 8419463
         }
       ]
     },
     "ELECTION_BOOTH_OPENS": {
       "name": "Election Booth Opens",
       "duration": 1200000,
       "events": [
         {
           "start_timestamp": 1660932900000,
           "end_timestamp": 1660934100000,
           "starting_in": 188419463,
           "ending_in": 189619463
         }
       ]
     },
     "ELECTION_OVER": {
       "name": "Election Over",
       "duration": 1200000,
       "events": [
         {
           "start_timestamp": 1660821300000,
           "end_timestamp": 1660822500000,
           "starting_in": 76819463,
           "ending_in": 78019463
         }
       ]
     },
     "FALLEN_STAR_CULT": {
       "name": "Cult of the Fallen Star",
       "duration": 1500000,
       "events": [
         {
           "start_timestamp": 1660748100000,
           "end_timestamp": 1660749600000,
           "starting_in": 3619463,
           "ending_in": 5119463
         },
         {
           "start_timestamp": 1660760100000,
           "end_timestamp": 1660761600000,
           "starting_in": 15619463,
           "ending_in": 17119463
         },
         {
           "start_timestamp": 1660768500000,
           "end_timestamp": 1660770000000,
           "starting_in": 24019463,
           "ending_in": 25519463
         }
       ]
     },
     "FEAR_MONGERER": {
       "name": "Fear Mongerer",
       "duration": 10800000,
       "events": [
         {
           "start_timestamp": 1661006100000,
           "end_timestamp": 1661016900000,
           "starting_in": 261619463,
           "ending_in": 272419463
         }
       ]
     },
     "JACOBS_CONTEST": {
       "name": "Jacob's Farming Contest",
       "duration": 1200000,
       "events": [
         {
           "start_timestamp": 1660745700000,
           "end_timestamp": 1660746900000,
           "starting_in": 1219463,
           "ending_in": 2419463
         },
         {
           "start_timestamp": 1660749300000,
           "end_timestamp": 1660750500000,
           "starting_in": 4819463,
           "ending_in": 6019463
         },
         {
           "start_timestamp": 1660752900000,
           "end_timestamp": 1660754100000,
           "starting_in": 8419463,
           "ending_in": 9619463
         }
       ]
     },
     "JERRYS_WORKSHOP": {
       "name": "Jerry's Workshop",
       "duration": 37200000,
       "events": [
         {
           "start_timestamp": 1661124900000,
           "end_timestamp": 1661162100000,
           "starting_in": 380419463,
           "ending_in": 417619463
         }
       ]
     },
     "NEW_YEAR_CELEBRATION": {
       "name": "New Year Celebration",
       "duration": 3600000,
       "events": [
         {
           "start_timestamp": 1661158500000,
           "end_timestamp": 1661162100000,
           "starting_in": 414019463,
           "ending_in": 417619463
         }
       ]
     },
     "SEASON_OF_JERRY": {
       "name": "Season of Jerry",
       "duration": 3600000,
       "events": [
         {
           "start_timestamp": 1661152500000,
           "end_timestamp": 1661156100000,
           "starting_in": 408019463,
           "ending_in": 411619463
         }
       ]
     },
     "SPOOKY_FESTIVAL": {
       "name": "Spooky Festival",
       "duration": 3600000,
       "events": [
         {
           "start_timestamp": 1661009700000,
           "end_timestamp": 1661013300000,
           "starting_in": 265219463,
           "ending_in": 268819463
         }
       ]
     },
     "TRAVELING_ZOO": {
       "name": "Traveling Zoo",
       "duration": 3600000,
       "events": [
         {
           "start_timestamp": 1660827300000,
           "end_timestamp": 1660830900000,
           "starting_in": 82819463,
           "ending_in": 86419463,
           "pet": "Elephant"
         },
         {
           "start_timestamp": 1661050500000,
           "end_timestamp": 1661054100000,
           "starting_in": 306019463,
           "ending_in": 309619463,
           "pet": "Giraffe"
         }
       ]
     }
   }
 }
}

Checklist

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • I have checked my code and corrected any misspellings

@MattTheCuber
Copy link
Collaborator

my guy, your crazy
i love it

@DuckySoLucky DuckySoLucky changed the title Enchanting Experiments and Jacob's Contests support, Updated Docs & ReadME, Code Cleaning Enchanting and Farming tag, Bingo Profile and Skyblock Calendar Endpoint, Updated Docs & ReadME, Code Cleaning Aug 17, 2022
@DuckySoLucky
Copy link
Contributor Author

my guy, your crazy i love it

I don't have anything better to do and I'm bored so..

@DuckySoLucky

This comment was marked as resolved.

@DuckySoLucky DuckySoLucky changed the title Enchanting and Farming tag, Bingo Profile and Skyblock Calendar Endpoint, Updated Docs & ReadME, Code Cleaning Enchanting and Farming tag, Bingo Profile, Skyblock Calendar and Mayor Endpoint, Updated Docs & ReadME, Code Cleaning Aug 17, 2022
@DuckySoLucky DuckySoLucky changed the title Enchanting and Farming tag, Bingo Profile, Skyblock Calendar and Mayor Endpoint, Updated Docs & ReadME, Code Cleaning Enchanting and Farming tag, Bingo Profile, Skyblock Calendar, Mayor and Auctions Endpoint, Updated Docs & ReadME, Code Cleaning Aug 18, 2022
@DuckySoLucky DuckySoLucky changed the title Enchanting and Farming tag, Bingo Profile, Skyblock Calendar, Mayor and Auctions Endpoint, Updated Docs & ReadME, Code Cleaning Enchanting and Farming tag, Bingo Profile, Calendar, Mayor and Auctions Endpoint, Updated Docs & ReadME, Code Cleaning Aug 18, 2022
@DuckySoLucky
Copy link
Contributor Author

DuckySoLucky commented Aug 18, 2022

Description

Changes:
・Added auctions Endpoint - Get a player's active & ended auctions with information about them

Type of change

  • New feature

Preview

auctions.js
{
"status": 200,
"data": {
 "active": {
   "bin": [
     {
       "_id": "62fe201d0cf239777c7e59e5",
       "uuid": "f03e20ae0757428d818a9f17854e56f5",
       "auctioneer": "a40eb1c449ac4b099426cb80384ac7e9",
       "profile_id": "a40eb1c449ac4b099426cb80384ac7e9",
       "coop": ["a40eb1c449ac4b099426cb80384ac7e9"],
       "start": 1660821533708,
       "end": 1661015933708,
       "item_name": "Treecapitator",
       "item_lore": [
         "§9Efficiency V",
         "§7Increases how quickly your tool",
         "§7breaks blocks.",
         "",
         "§7A forceful Gold Axe which can",
         "§7break a large amount of logs in",
         "§7a single hit!",
         "§8Cooldown: §a2s",
         "",
         "§7§8This item can be reforged!",
         "§5§lEPIC AXE"
       ],
       "extra": "Treecapitator Gold Axe Efficiency",
       "category": "weapon",
       "tier": "EPIC",
       "starting_bid": 1200000,
       "item_bytes": {
         "type": 0,
         "data": "H4sIAAAAAAAAAD2R3W7TQBCFx0kDiYMo5QHQFHEbmqTNT3tnBVOCSokqF3GHxvbYXmW9G7xr0jxR3iMPhlhHFbdnz3znzKwP0ANP+ADgtaAlUu+dB52FrpX1fGhbyntwwiopnh1t+UdC5+gEBA/6jyqumNYUS/ba0PsiUv4sKTfO/teHl6kwG0k7B7nTFXed2ofTw/46zDKRCAfe4Q94f9jPlipxHMMGC73F37VI1nKHO11XaLWWcOY8xySDsdTJ2nx0LHRigJmuEs5qibdaphg8MW4LkRSYkDqij2NIKKnKGalslkOdodS5QaHgjfMQGqFyyVgIew5vD/v5wqWmeqtuXAiNzXOae4gK4cYsl00AxowVuwY5p+fw+rCfHPYyXC0XGPwMu3ByTyU3AZOoYk5oIyxZXYEPp+GTrSiwthJxbdl0oacrkQsVUQ7+18f727vw15HRnPosegjDRbBaRkH0/aHRfXjVfAspW7Kypg0+/z+p69ppQ9+y5LVQbETT3gNXp64d7MN4Ohmmk/l8MJ3N0sEVUTygLE4H08loFl9fzmdJeun6WFGysVRu4HQ0uri6GI9wfDMc4uobQAtefKKScnZk+AdaQM5VRQIAAA=="
       },
       "claimed": false,
       "claimed_bidders": [],
       "bin": true,
       "highest_bid_amount": 0,
       "bids": []
     },
     {
       "_id": "62fe20be0cf239777c7e8e09",
       "uuid": "3d858a9ffd504d0a9f3d7d3175b2faeb",
       "auctioneer": "a40eb1c449ac4b099426cb80384ac7e9",
       "profile_id": "a40eb1c449ac4b099426cb80384ac7e9",
       "coop": ["a40eb1c449ac4b099426cb80384ac7e9"],
       "start": 1660821694408,
       "end": 1661016094408,
       "item_name": "Ancient Shark Scale Leggings",
       "item_lore": [
         "§7Strength: §c+25 §9(+25)",
         "§7Crit Chance: §c+12% §9(+12%)",
         "§7Crit Damage: §c+33% §9(+33%)",
         "§7Sea Creature Chance: §c+2.5%",
         "§7Health: §a+232 §9(+7)",
         "§7Defense: §a+172 §9(+7)",
         "§7Intelligence: §a+20 §9(+20)",
         " §8[§7❈§8] §8[§7❈§8]",
         "",
         "§9§d§lLegion IV",
         "§7Increases most of your player",
         "§7stats by §e0.28% §7per player",
         "§7within §b30 §7blocks of you, up",
         "§7to §c20 §7players.",
         "§9Growth V",
         "§7Grants §a+75 §c❤ Health§7.",
         "§9Protection V",
         "§7Grants §a+15 §a❈ Defense§7.",
         "§9Thorns III",
         "§7Grants a §a50% §7chance to",
         "§7rebound §a9% §7of damage dealt",
         "§7back at the attacker.",
         "",
         "§6Full Set Bonus: Absorb",
         "§7§9Doubles§7 your §a❈ Defense§7",
         "§7while in water.",
         "",
         "§6Full Set Bonus: Reflect",
         "§7§7Your sharp scales reflect",
         "§7§915% §7of damage onto the",
         "§7attacker.",
         "",
         "§9Ancient Bonus",
         "§7Grants §a+1 §9☠ Crit Damage",
         "§9§7per §cCatacombs §7level.",
         "",
         "§6§lLEGENDARY LEGGINGS"
       ],
       "extra": "Ancient Shark Scale Leggings Leather Leggings Thorns §d§lLegion Growth Protection",
       "category": "armor",
       "tier": "LEGENDARY",
       "starting_bid": 6000000,
       "item_bytes": {
         "type": 0,
         "data": "H4sIAAAAAAAAAG1U4W7bNhA+x0nruB1SDAO2dcPGrg26oIlrSbFl+5/npI6xNCjiLkAxDAElnyUhtGiQ1LK8wR5hfwrsR1G/hx8lDzL0KCltklUQIJL33Xf33R1VB1iHSlIHgMoKrCSTynYF1gYyS02lDlXDo3VYxTSMwT4VuPdbGijkZzwQWKnC+kEywReCR5qs/9Xh7iTRc8EvyOlQKqzR6SZ8v1z4Y6MwjUzcY8tF+Mxt0af7M3234BFZByoxbBDzNMQC4LibBYIW1yB7fMajEuJ5JYQWW8BsDORsQMmZTOENNrfR2oSHhDhALooc+DPXcwt/fwu+I9seTjHVWBgd/5PRUo9Sg0IkEZac5N4sJTS34Adadn4n2OXbv2n1x60tFeFLwi4Xk+VCHGKUyJSNTkrekBLWqNlMasPklF3ITDFbQlTwEyG04Uaz4ILQ2Gy4HSvan+NHzBPanicmTlIyBJ7Nyg+EDM90ybbNsjl8TadG2mLkefuFs27APUpsqOS5idlJHm+oeEoBrUTfdim8fPuOFXUjawM2yOGVkgZDY3WcwOObTo514qSclQXNvb4gr9exVKlmo9EIfvzkwy281cxlhXnPmJE5qcKAxnBi7d3cTHom+QCwic0HvrFSeXjGuGEmRvoY2qFqUMG/XS7aLzIh2BgN+0Wmme6xfqClCuApuVE6ezKjGda0KWr+v6xt0/zzOBHIqLjn3BTMDz/DfIxTQQXJddH7xvLpmKs50yGnIEzdAHSd1i1BMqXukAa4T8fXdTwgdD8NE0zLYLeb5NgxvPznX3btgtjR6pZjQh0ccOKTs8A6+AL/RGGZqXptO4/7w/2jvf7xG0ar4ehoOK7CWiiFVADb72uwesRnaPNuX6UxJmFnbGyFMZrmKEnp9tdhY/8vo3jfGJUEmUFdu6KpNXu7uz2n3a5BbSYnyTShsb3LC7YarEuVEMdrHsFX44P+8a+n40H/cP/0Kp2a/St93lSH+/bXRLWYEZWuwh2Tzxipq1ZhIxMmmVHbTkV+5+h0lSBRPu20WatCff5xku0BkNwso2hPOsiR+1PcafuBt7PLsb0TtDvTHe6GLa/Dw67neZQ68SNd0NkcNpznjvvcdVir12qy/kuAFbhTdoOeDzdl9pZnBQAA"
       },
       "claimed": false,
       "claimed_bidders": [],
       "bin": true,
       "highest_bid_amount": 0,
       "bids": []
     }
   ],
   "auction": []
 },
 "ended": {
   "bin": [
     {
       "_id": "62fe35d00cf239777c813831",
       "uuid": "626e0848cef04929bb6bd04ea34048ea",
       "auctioneer": "a40eb1c449ac4b099426cb80384ac7e9",
       "profile_id": "a40eb1c449ac4b099426cb80384ac7e9",
       "coop": ["a40eb1c449ac4b099426cb80384ac7e9"],
       "start": 1660827088550,
       "end": 1660832475193,
       "item_name": "Implosion Belt",
       "item_lore": [
         "§7Defense: §a+70",
         "",
         "§bArachno Resistance I",
         "§7Grants §a+1.5❈ Defense §7against",
         "§7§a§aspiders§7.",
         "§bBreeze I",
         "§7When you haven't been damaged in",
         "§7the last §a5s §7or more, your",
         "§7mana costs are decreased by",
         "§7§a1%§7.",
         "",
         "§6Ability: Consolidated",
         "§7§7Increases all explosion damage",
         "§7dealt by §a25%§7.",
         "",
         "§7§8This item can be reforged!",
         "§5§lEPIC BELT"
       ],
       "extra": "Implosion Belt Skull Item",
       "category": "misc",
       "tier": "EPIC",
       "starting_bid": 2500000,
       "item_bytes": {
         "type": 0,
         "data": "H4sIAAAAAAAAAF1Uy47iRhQtmpkJkCitGUVJVlElmWgWCTN+YAy9M9DtLoKhG8zD3ozKdoELyjayi6bhC7LJJ2TNf/ApUb4jShm6R0kkW3adOvfcc+91uQJAGRRoBQBQuAAXNCj8XgAv28km5oUKKHK8KILyLQ3IDcOLTLD+roDKaLVhbLCNSVoCFygAb33clOsNfV6d+7pUVZVmreqpGFebDdnzFExktRaIuLs0WZOUU5KVQYmTR75JSXZKXQIvJ5htSOEvsk0WqN2V8FRmvjoMvZlBUSdZWLYjWXtnay2RNrANxRptf0Vtg/q33Qc3Ypk7ZitEjTpqI8m1ra27HG9dO6DOdCxZirN3pu7Kiq7Vfme8c5QJdW2kOTuUtamxQHFr5ynu2jMnA0fkPet054HZ5M5s+EBYg/aMk689ngYbgcl+NBm5sxsZz7rMbaPFgLYkP56wJ57kzkIpEHv+7rSnn/IIv2OJd236HyznC73tqU4Uibhbo97bNf+loXE81ZijdkM3vt940UTqqUNGbnMf4wd3eSNqQ1tr767cjqP0zS4d2K3lYHov9Tv9pWWvtIHp0r6NFGu/qjlT0SNzuHKnSB1MUa3fMR6d5bXiLFnYN+8fLbMbWs+9Ofvj7mwYuuaN5Iz+713ckfzgmpPsqW97z2QcLZKn/VbzzD0/5/frpph4BXwW0GzN8K4MXvSSlJQE+Bq8OR70DpmTOCNX8HjAP+uSwL85HjwjxX4YJ3BIMppxHPsEIvBO0M0Uxzw7keX32p9//AafBASk4wWmccbBV+JdMMSVrcXHnGZi/R58LnRbKSH7XOtHAU1DEsNdsoEhfiDxOw49IoAAR3hBAkhj8IMg8ZBAhjOep9TyxHqSwkiU8EsemoLvBBLhGEM/yYQxnBIYED8lOBMa3g58cfYi/3TyAMC3x0Pd8CijfHcF20mcJYwGmBNxrk5MHcXnaKHFGCSPa5ZkNHn2Bb4WlIBgJtzuck+K9qwMT/ENO6QZpJxE0MexKAmmZJ6koqLvweXxoB0P7PoOtWHrumeXwIs+jgh4LXAUPSdqEcbFxC6vH3mKDc5T6m14fnIr+NOiCF55p1bmx7kI3uDzvD6mn+aVb4BS/o8BXyLrrjcYoUH/41PWzUbAb3XsBU1PVquBpuJqzVflKp5LtWp9TiSloWq+5NdLoMxpRIRmtAaX+ge59kFRoHKl6tCwALgArzrnvhQB+Aco6/s63gQAAA=="
       },
       "claimed": false,
       "claimed_bidders": ["91d14350414f43cc91d27dbce284dd03"],
       "bin": true,
       "highest_bid_amount": 2500000,
       "bids": [
         {
           "auction_id": "626e0848cef04929bb6bd04ea34048ea",
           "bidder": "91d14350414f43cc91d27dbce284dd03",
           "profile_id": "91b8d65d48d147c984a4f738c10695a9",
           "amount": 2500000,
           "timestamp": 1660832478310
         }
       ]
     },
     {
       "_id": "62fe42fa0cf239777c824f4d",
       "uuid": "ff9777936be0469a9301c6880eb0be86",
       "auctioneer": "a40eb1c449ac4b099426cb80384ac7e9",
       "profile_id": "a40eb1c449ac4b099426cb80384ac7e9",
       "coop": ["a40eb1c449ac4b099426cb80384ac7e9"],
       "start": 1660830458533,
       "end": 1660830861151,
       "item_name": "Heroic Spirit Sceptre ✪✪✪✪✪",
       "item_lore": [
         "§7Gear Score: §d682 §8(2029)",
         "§7Damage: §c+218 §e(+20) §8(+750)",
         "§7Strength: §c+60 §e(+20) §9(+40) §8(+225)",
         "§7Crit Damage: §c+50% §8(+187.5%)",
         "§7Bonus Attack Speed: §c+5% §9(+5%) §8(+7.5%)",
         "§7Intelligence: §a+430 §9(+100) §8(+1,500)",
         " §8[§8✎§8]",
         "",
         "§d§l§d§lUltimate Wise V§9, §9Critical V§9, §9Cubism V",
         "§9Ender Slayer V§9, §9Execute V§9, §9Experience III",
         "§9First Strike IV§9, §9Giant Killer V§9, §9Impaling III",
         "§9Lethality V§9, §9Life Steal III§9, §9Looting III",
         "§9Luck V§9, §9Scavenger III§9, §9Sharpness V",
         "§9Vampirism V",
         "",
         "§6Ability: Guided Bat §e§lRIGHT CLICK",
         "§7Shoots a guided spirit bat,",
         "§7following your aim and exploding",
         "§7for §c7,047 §7damage.",
         "§8Mana Cost: §3125",
         "",
         "§6§lLEGENDARY DUNGEON SWORD"
       ],
       "extra": "Heroic Spirit Sceptre ✪✪✪✪✪ Red Rose Impaling Luck Critical Looting Ender Slayer Scavenger Vampirism Experience Life Steal Execute Giant Killer First Strike §d§lUltimate Wise Sharpness Cubism Lethality",
       "category": "weapon",
       "tier": "LEGENDARY",
       "starting_bid": 17800000,
       "item_bytes": {
         "type": 0,
         "data": "H4sIAAAAAAAAAHVU3W4aRxQ+GMcGmiZV1faiUtuRGldG+IddWJZY7QUGjFEIjoDYqqJoNewOy8izP9qddeyX6BPk3lIfw4+SB6l6ZgcoN0ViZs833zlz5sx3pgJQhgKvAEBhB3a4B78V4Fk3ykJZqEBRUr8Muyx0l6B+RShfco9dCOqnaP5TgX2Pp7GgD8gaRQkrIfoD/PL0aA8YTcjUReyMPD16rbaJU/vQrJuvq3CAhB4NqJ8vujXTaOPMDmtmvZrTarZVr8Ip0qYyYaEvl5rYqm/zXh/WmmsH07Sq8AodugmXZDu4VT/QFKNtn1gHVTCQdR6FWUo6UlL3lkxjxrwV+UDHRd4qkdzlBF2GoWRCcB+rkUemtWajrtlGfZ2GcWThN7xU1gf8f/n8F44fsSx/YBWeHoUe3wvJAyoZueEpI9cY5EhFUrlzl4otJJvzNCDX0EajH3oMi4rlxmlD6d8zN5NsG4hZwlWaZDgcwu8IXfAklQRryW8R3DAHnIaSvOFCbAccBjEVPPRzbxuBEZNLROTDf5wRXzCMxzBXZG3QKJJrR0PZGVZ34zN16R3eJW615TJd0iQOWZriGV+gfU2DmCf6zACHT4+tzpyrvc/IIEPteeScSiUCrOJkOLicke5o2H0DPyutLHH/lFDia2aqIkkyp/IIfsX1RSRE9Ekl+BBlCaE8IDT0CLuPReQhDD/mpEQpwT6qN238sL1cSifwHd7jWxpS0o1Sqe6/YZgWpvgTpoi5jPqD/rjXmfxJeu/Hg/7VmExvria9EuyOacBUGVuXLIm4i2rLs5q6LEZtY6DWl89//98IFXjZv5cJRakmfI73nBbhm2UknTiSVEaOq1oV06iUoBTgKRacJbC3zLcqwrdehgWPQodLFjiC3TGh2rgIX2exn1CPbbBnJShHCfd5OKM+fN+ddC5mw/HAGUyGPad7NRr1u7NS/kCUzjsz56Yz7lXguXoZUEIBCyXmVeIr5eg9dgVevwqNK+5K2drcF1oomodRUNdOmutaE8rpWiua8hW2HrvlqBOuHp4CMu7WQtEeFbZRvXapCJSokyqJamCf6UbR/Oe+0r5zm2t/BS1Ul6CL6hKEdlWZVo3qfMJGXee2lqy299y8R1eLYt0ryga8/gy1CK+shmHVzZZxbDbp4rjZaljH80XLOjYM2241zKZheE28AdyMpRJPBi/MU/vUNIlxhsO7twA7sKdfNfyCfwHhA3vxtwUAAA=="
       },
       "claimed": false,
       "claimed_bidders": ["393c45a50080492b98a5309df1fea69d"],
       "bin": true,
       "highest_bid_amount": 17800000,
       "bids": [
         {
           "auction_id": "ff9777936be0469a9301c6880eb0be86",
           "bidder": "393c45a50080492b98a5309df1fea69d",
           "profile_id": "695b840aaa5441728179e6e27f1dc26c",
           "amount": 17800000,
           "timestamp": 1660830865087
         }
       ]
     }
   ],
   "auction": []
 }
}
}

Checklist

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • I have checked my code and corrected any misspellings

@MattTheCuber
Copy link
Collaborator

I'm not sure why you divided the auctions in bin and auction arrays? I would've just kept the bin attribute on the auctions.

@DuckySoLucky
Copy link
Contributor Author

Okay, will change that.

@DuckySoLucky DuckySoLucky changed the title Enchanting and Farming tag, Bingo Profile, Calendar, Mayor & Auctions Endpoints, Updated Docs & ReadME, Code Cleaning Enchanting, Farming, Soulbound networth support | Bingo Profile, Calendar, Mayor & Auctions Endpoints | Updated Docs Aug 29, 2022
@DuckySoLucky DuckySoLucky changed the title Enchanting, Farming, Soulbound networth support | Bingo Profile, Calendar, Mayor & Auctions Endpoints | Updated Docs Enchanting, Farming, Soulbound networth support | Bingo Profile, Calendar & Auctions Endpoints | Updated Docs Sep 3, 2022
MattTheCuber's already added but GitHub will probably have a stroke and send like 500 conflict errors if I don't add this
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants